GET api/feature/list?identifiers[0]={identifiers[0]}&identifiers[1]={identifiers[1]}
Get a list of features by a list of ids Processes this feature API request. The parameter and response sections describe the data exchanged with the API.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| featureid |
the list of ids |
Collection of integer |
Required |
Body Parameters
None.
Response Information
Resource Description
A System.Net.Http.HttpResponseMessage value...
Collection of FeatureDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| Name |
The name value. |
string |
None. |
| Id |
The unique identifier of this resource. |
integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Name": "sample string 1",
"Id": 2
},
{
"Name": "sample string 1",
"Id": 2
}
]